home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
swagg-m
/
misc.swg
/
0072_Program Origin.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1994-01-27
|
218b
|
12 lines
{$X+} { Need this for easy handling of Asciiz strings }
var
parentseg : ^word;
p : pchar;
begin
parentseg := ptr(prefixseg,$16);
p := ptr(parentseg^-1,8);
writeln('I was launched by ',p);
end.